home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / repair / master.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  756b  |  29 lines

  1. /* Copyright 2001, 2002, 2003, 2004 by Hans Reiser, licensing governed by
  2.    reiser4progs/COPYING.
  3.    
  4.    repair/master.h -- reiserfs master superblock recovery structures
  5.    and macros. */
  6.  
  7. #ifndef REPAIR_MASTER_H
  8. #define REPAIR_MASTER_H
  9.  
  10. #include <repair/repair.h>
  11.  
  12. extern errno_t repair_master_check_struct(reiser4_fs_t *fs, 
  13.                       uint8_t mode,
  14.                       uint32_t options);
  15.  
  16. extern errno_t repair_master_pack(reiser4_master_t *master,
  17.                   aal_stream_t *stream);
  18.  
  19. extern reiser4_master_t *repair_master_unpack(aal_device_t *device,
  20.                           aal_stream_t *stream);
  21.  
  22. extern void repair_master_print(reiser4_master_t *master,
  23.                 aal_stream_t *stream,
  24.                 uuid_unparse_t unparse);
  25.  
  26. extern errno_t repair_master_check_backup(backup_hint_t *hint);
  27.  
  28. #endif
  29.